/* =========================
   ARQUIVO: responsive.css
========================= */

@media (min-width: 1024px) {
  .carousel-track { grid-auto-columns: 32%; }
}
@media (min-width: 601px) and (max-width: 1023px) {
  .carousel-track { grid-auto-columns: 50%; }
}

/* Telas médias (tablets) */
@media (max-width: 768px) {
  /* Layouts Gerais */
  .apoio-grid,
  .sinopse-grid,
  .financiamento-grid,
  .footer-grid,
  .fala-diretores-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .menu-toggle {
  display: block;
  position: relative;
  z-index: 1001;
  }

  .nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  right: 0;
  width: 220px;
  background: var(--bg-darker, #06080b);
  padding: 12px;
  border-left: 1px solid var(--border, #1b2330);
  z-index: 1000;
  }

  .nav-links.show {
  display: flex !important;
  }

  .nav-links a {
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(255,255,255,0.08);
    outline: none;
  }

  /* Cards de Recompensa */
  .recompensa-card {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
  .recompensa-card .descricao { padding: 0; }
  .recompensa-card .acao { text-align: center; }

  /* Mídia */
  .sinopse-media img,
  .divider-photo img {
    max-height: none;
    height: auto;
    width: 100%;
  }
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* Financiamento */
  .financiamento-chamada .btn {
    margin: 0 auto;
  }
  .carousel-track {
    grid-auto-columns: 100%;
  }
  .card {
    padding: 20px;
  }

  /* Seção Fala Diretores */
  .fala-diretores-grid {
    grid-template-areas:
      "texto"
      "video";
  }
  .fala-diretores-video-inner {
    width: 220px;
    height: 330px;
    margin: 0 auto;
  }
  .fala-diretores-texto {
    max-width: 100%;
  }
}

/* Telas pequenas (celulares) */
@media (max-width: 600px) {
  .carousel-track { grid-auto-columns: 100%; }
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-contact ul,
  .footer-social ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-contact a { font-size: 0.9rem; }
  .footer-social svg { width: 24px; height: 24px; }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  /* Tipografia */
  .page-title {
    font-size: 2rem;
    margin-top: 100px;
  }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
  .financiamento-chamada h2 { font-size: 1.5rem; }
  .financiamento-chamada p { font-size: 1rem; }

  /* Navbar */
  .nav-links a { font-size: 0.9rem; padding: 6px 8px; }

  /* Seções */
  .sinopse { padding: 40px 0; }
  .divider-photo { height: 80px; }

  /* Botão */
  .btn { padding: 10px 14px; font-size: 0.9rem; }
  
  /* Mídia */
  .fala-diretores-video-inner {
    width: 200px;
    height: 300px;
  }
  
  /* Card Obrigado */
  .thanks-card { padding: 18px 16px; border-radius: 12px; }
  .thanks-card h1 { font-size: 1.6rem; }
  .thanks-card .subtitle { font-size: 0.95rem; }
  .thanks-card .help { font-size: 0.9rem; }
  .thanks-card a.btn { width: 100%; }
}